home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / appletalk / uab.shar / ethertalk.h < prev    next >
C/C++ Source or Header  |  1990-07-12  |  1KB  |  39 lines

  1. /*
  2.  * $Author: cck $ $Date: 88/09/14 10:19:32 $
  3.  * $Header: /src/local/mac/cap/etalk/RCS/ethertalk.h,v 1.5 88/09/14 10:19:32 cck Rel $
  4.  * $Revision: 1.5 $
  5. */
  6.  
  7. /*
  8.  * Ethertalk definitions
  9.  *
  10.  * Copyright (c) 1988 by The Trustees of Columbia University 
  11.  *  in the City of New York.
  12.  *
  13.  * Permission is granted to any individual or institution to use,
  14.  * copy, or redistribute this software so long as it is not sold for
  15.  * profit, provided that this notice and the original copyright
  16.  * notices are retained.  Columbia University nor the author make no
  17.  * representations about the suitability of this software for any
  18.  * purpose.  It is provided "as is" without express or implied
  19.  * warranty.
  20.  *
  21.  * Edit History:
  22.  *
  23.  *  August 1988  CCKim Created
  24.  *
  25. */
  26.  
  27. /* format of an ethertalk appletalk address */
  28. struct ethertalkaddr {
  29.   byte dummy[3];        /* should be "network" */
  30.   byte node;            /* appletalk node # */
  31. };
  32.  
  33. #ifndef ETHERTYPE_APPLETALK
  34. # define ETHERTYPE_APPLETALK 0x809b
  35. #endif
  36.  
  37. #define ETPL 4            /* ethertalk protocol address length */
  38.  
  39.